Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several new scripts and documentation files to improve and standardize the Spec-Driven Development workflow. The main changes include new Bash scripts for feature branch creation, prerequisite checking, and implementation plan setup, as well as the addition of a constitution document outlining architectural and workflow standards. These updates enhance automation, enforce best practices, and improve interoperability for both Git and non-Git repositories.
Spec-Driven Development Workflow Automation:
.specify/scripts/bash/create-new-feature.sh, a robust script for creating new feature branches and spec directories, supporting smart branch naming, manual overrides, and compatibility with both Git and non-Git repositories. The script ensures branch name uniqueness, length compliance, and sets up the feature environment..specify/scripts/bash/check-prerequisites.sh, a consolidated script to validate the existence of required spec documents and directories, outputting results in text or JSON format, and supporting multiple workflow phases..specify/scripts/bash/setup-plan.sh, a script to initialize an implementation plan (plan.md) for a feature, copying from a template if available and outputting results in text or JSON..specify/scripts/bash/common.sh, a shared utility script providing functions for repository root detection, branch validation, feature directory resolution, and file existence checks, used by all other workflow scripts.Documentation & Standards:
.specify/memory/constitution.md, a constitution document defining architectural, interoperability, and workflow standards for the WorldTides library, including Kotlin-first design, strict API fidelity, type safety, versioning, documentation, and QA requirements..specify/templates/agent-file-template.md, a template for auto-generating project development guidelines from feature plans, including active technologies, project structure, commands, code style, and recent changes.